    /* تنسيقات عامة */
    .about {
        padding: 60px 0;
        background-color: #f8f9fa;
    }
    
    /* تنسيقات البطاقة */
    .news-card-wrapper {
        margin-bottom: 25px;
    }
    
    .news-card {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        transition: all 0.4s ease;
    }
    
    .news-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    
    /* تنسيقات الصورة المحسنة */
    .news-img-container {
        padding: 0;
        position: relative;
    }
    
    .image-frame {
        position: relative;
        height: 100%;
        overflow: hidden;
    }
    
    .news-thumbnail {
        width: 100%;
        height: 140px;
        object-fit: fill;
        transition: all 0.5s ease;
    }
    
    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(25, 119, 204, 0.3), rgba(99, 184, 255, 0.1));
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .news-card:hover .news-thumbnail {
        transform: scale(1.05);
    }
    
    .news-card:hover .image-overlay {
        opacity: 1;
    }
    
    /* تنسيقات المحتوى */
    .news-content {
        padding: 20px;
        direction: rtl;
    }
    
    .news-title {
        margin-bottom: 12px;
    }
    
    .news-title a {
        color: #2c4964;
        font-size: 18px;
        font-weight: 700;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .news-title a:hover {
        color: #1977cc;
        text-decoration: underline;
    }
    
    .news-excerpt {
        color: #555;
        font-size: 14px;
        line-height: 1.7;
        text-align: justify;
        position: relative;
    }
    
    /* تنسيقات رابط "للمزيد" */
    .read-more-link {
        display: inline-flex;
        align-items: center;
        margin-top: 10px;
        color: #1977cc;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s;
    }
    
    .read-more-text {
        margin-left: 5px;
    }
    
    .read-more-link i {
        font-size: 12px;
        transition: transform 0.3s;
    }
    
    .read-more-link:hover {
        color: #135a9e;
    }
    
    .read-more-link:hover i {
        transform: translateX(-3px);
    }
    

/* تنسيق الصورة المميزة */
.featured-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    max-height: 400px;
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.image-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 119, 204, 0.3), rgba(99, 184, 255, 0.15));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.featured-image-wrapper:hover .featured-image {
    transform: scale(1.03);
}

.featured-image-wrapper:hover .image-hover-overlay {
    opacity: 1;
}

/* تنسيق المحتوى النصي */
.content-section {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.content-text {
    color: #444;
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
    direction: rtl;
}

.content-text p {
    margin-bottom: 1.2rem;
}

.content-text img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
}

/* تأثيرات الحركة */
[data-aos="fade-up"] {
    transform: translateY(30px);
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos="fade-left"] {
    transform: translateX(30px);
    opacity: 0;
    transition-property: transform, opacity;
}

.aos-animate {
    transform: translate(0);
    opacity: 1;
}

/* التجاوب مع أحجام الشاشات */
@media (max-width: 992px) {
    .animated-title {
        font-size: 1.8rem;
    }
    
    .subtitle-decoration {
        font-size: 1rem;
    }
    
    .content-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .featured-image-wrapper {
        max-height: 350px;
        margin-bottom: 30px;
    }
    
    .content-section {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .animated-title {
        font-size: 1.5rem;
        padding-bottom: 10px;
    }
    
    .animated-title::after {
        width: 60px;
        height: 3px;
    }
    
    .featured-image-wrapper {
        max-height: 300px;
    }
}
    
    /* تنسيقات التجاوب */
    @media (max-width: 768px) {
        .news-thumbnail {
            height: 120px;
        }
        
        .news-content {
            padding: 15px;
        }
        
        .news-title a {
            font-size: 16px;
        }
        
        .news-excerpt {
            font-size: 13px;
        }
    }
    
    @media (max-width: 576px) {
        .news-thumbnail {
            height: 100px;
        }
        
        .image-overlay {
            display: none;
        }
    }
    
/*--------------------------------------------------------------
# Trainers
--------------------------------------------------------------*/

#trainers {
  padding: 80px 0;
  background-color: #f8f9fa;
}

/* تنسيق بطاقات المدربين */
.member {
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.member:hover {
  transform: translateY(-10px);
}

.member-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  text-align: center;
}

.member-img img {
  width: 150px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  border: 5px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.member:hover .member-img img {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.member-info {
  padding: 20px 10px;
  background: #fff;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

.member-info span {
  display: block;
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 15px;
}

/* تنسيق أيقونات التواصل */
.social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social a {
  width: 35px;
  height: 35px;
  background: #f1f1f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c4964;
  transition: all 0.3s ease;
}

.social a:hover {
  background: #1977cc;
  color: #fff;
  transform: translateY(-3px);
}

/* تنسيق الترقيم */
.pagination {
  margin-top: 40px;
}

.pagination .page-item.active .page-link {
  background-color: #1977cc;
  border-color: #1977cc;
}

.pagination .page-link {
  color: #2c4964;
  margin: 0 5px;
  border-radius: 5px;
}

/* تنسيقات التجاوب */
@media (max-width: 992px) {
  .member {
    margin-bottom: 25px;
  }
  
  .member-img img {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  #trainers {
    padding: 60px 0;
  }
  
  .member-info {
    padding: 15px 5px;
  }
}

@media (max-width: 576px) {
  .section-title h2 {
    font-size: 28px;
  }
  
  .member {
    margin-bottom: 20px;
  }
  
  .member-img img {
    width: 100px;
    height: 100px;
  }
}